home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / PttyConnection.C < prev    next >
C/C++ Source or Header  |  1990-02-05  |  858b  |  74 lines

  1. //$PttyConnection$
  2. #include "PttyConnection.h"
  3.  
  4. //---- PttyConnection ----------------------------------------------------------
  5.  
  6. PttyConnection::PttyConnection()
  7. {
  8. }
  9.  
  10. PttyConnection::~PttyConnection()
  11. {
  12. }
  13.  
  14. FILE *PttyConnection::GetFile()
  15. {
  16.     return 0;
  17. }
  18.  
  19. int PttyConnection::GetPid()
  20. {
  21.     return -1;
  22. }
  23.  
  24. int PttyConnection::GetFileNo()
  25. {
  26.     return -1;
  27. }
  28.  
  29. bool PttyConnection::SubmitToSlave(char*, int)
  30. {
  31.     return FALSE;
  32. }
  33.  
  34. int PttyConnection::Read(char*, int)
  35. {
  36.     return -1;
  37. }
  38.  
  39. int PttyConnection::GetMode()
  40. {
  41.     return 0;
  42. }
  43.  
  44. void PttyConnection::KillChild()
  45. {
  46. }
  47.  
  48. void PttyConnection::CleanupPtty()
  49. {
  50. }
  51.  
  52. bool PttyConnection::Echo()
  53. {
  54.     return FALSE;
  55. }
  56.  
  57. bool PttyConnection::RawOrCBreak()
  58. {
  59.     return FALSE;
  60. }
  61.  
  62. void PttyConnection::BecomeConsole()
  63. {
  64. }
  65.  
  66. void PttyConnection::SetSize(int,int)
  67. {
  68. }
  69.  
  70. void PttyConnection::GetPttyChars(PttyChars*)
  71. {
  72. }
  73.  
  74.